home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / vbdatabs / dbconfig.h < prev    next >
C/C++ Source or Header  |  1999-03-26  |  3KB  |  85 lines

  1. // ------------------------------- //
  2. // -------- Start of File -------- //
  3. // ------------------------------- //
  4. // ----------------------------------------------------------- //
  5. // C++ Header File Name: dbconfig.h 
  6. // Compiler Used: MSVC40, DJGPP 2.7.2.1, GCC 2.7.2.1, HP CPP 10.24
  7. // Produced By: Doug Gaer   
  8. // File Creation Date: 09/17/1997  
  9. // Date Last Modified: 03/26/1999
  10. // Copyright (c) 1997 Douglas M. Gaer
  11. // ----------------------------------------------------------- // 
  12. // ---------- Include File Description and Details  ---------- // 
  13. // ----------------------------------------------------------- // 
  14. /*
  15. The VBD C++ classes are copyright (c) 1997, by Douglas M. Gaer.
  16. All those who put this code or its derivatives in a commercial
  17. product MUST mention this copyright in their documentation for
  18. users of the products in which this code or its derivative
  19. classes are used. Otherwise, you have the freedom to redistribute
  20. verbatim copies of this source code, adapt it to your specific
  21. needs, or improve the code and release your improvements to the
  22. public provided that the modified files carry prominent notices
  23. stating that you changed the files and the date of any change.
  24.  
  25. THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND.
  26. THE ENTIRE RISK OF THE QUALITY AND PERFORMANCE OF THIS SOFTWARE
  27. IS WITH YOU. SHOULD ANY ELEMENT OF THIS SOFTWARE PROVE DEFECTIVE,
  28. YOU WILL ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR, OR
  29. CORRECTION.
  30.  
  31. Modify this file to customize the string database. All of
  32. the data member names must be set to a character string or
  33. set to 0:
  34.  
  35.      const char *M2Name = "SEC. CIRCUIT #";
  36.      const char *M2Name = 0;  
  37.  
  38. If the data member name is set to 0, then that data member's
  39. name will not be used. Space will still be allocated for the
  40. data member in the database so that it can be used in the
  41. future. The "KeyName" data member must always be set because
  42. it represents a unique name used to identify each object in
  43. the data base.
  44.  
  45. The KeyName value must always by set. The initial value is
  46. set to " " and must be changed to the desired value for each
  47. application.
  48. */
  49. // ----------------------------------------------------------- //   
  50. #ifndef __DBCONFIG_HPP
  51. #define __DBCONFIG_HPP
  52.  
  53. // Key alphanumeric data member 
  54. const char *KeyName = "HOSTNAME";  
  55.  
  56. // Second alphanumeric data member  
  57. const char *M2Name = "IP ADDRESS";
  58.                             
  59. // Third alphanumeric data member 
  60. const char *M3Name = "MACHINE TYPE";      
  61.  
  62. // Fourth alphanumeric data member 
  63. const char *M4Name = "OS TYPE";      
  64.                             
  65. // Fifth alphanumeric data member 
  66. const char *M5Name = "DROP/ROOM #";      
  67.  
  68. // Sixth alphanumeric data member 
  69. const char *M6Name = "HUB LOCATION";      
  70.  
  71. // Seventh alphanumeric data member 
  72. const char *M7Name = "CABLE/WIRE #";      
  73.  
  74. // Eighth alphanumeric data member 
  75. const char *M8Name = "RACK PANEL #";      
  76.  
  77. // Comment alphanumeric data member 
  78. const char *Comments = "COMMENTS";  
  79.  
  80. #endif  // __DBCONFIG_HPP //
  81. // ----------------------------------------------------------- // 
  82. // ------------------------------- //
  83. // --------- End of File --------- //
  84. // ------------------------------- //
  85.